home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 400 b | 25 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class BAD_REDEFINE5
-
- inherit ANY redefine clone end;
-
- creation {ANY}
- make
-
- feature {ANY}
-
- make is
- local
- x: like Current
- do
- x := clone(Current);
- end;
-
- clone(other: GENERAL): BOOLEAN is
- do
- end;
-
- end -- BAD_REDEFINE5
-